home *** CD-ROM | disk | FTP | other *** search
Wrap
Text File | 1998-10-24 | 1.0 KB | 44 lines | [ TEXT/ScoM]
duration-tuning length Use with microtonality (def-tuning). You have to use non-overlapping or non maximum length durations otherwise the last one of the two contacting notes is removed and you don't hear it. Duration-tuning function decrease each length value by10 ticks. (duration-tuning '(1/8 1/16 -1/6 -1/4 1/2)) => (230 110 330 490 950) (duration-tuning '((1/8 1/16 -1/6 -1/4 1/2) (-1/8 1/16 1/6 -1/4 1/2))) => ((230 110 330 490 950) (250 110 310 490 950)) Score Example: (def-tempo 64) (def-length violin '(1/2 1/2 1/2 1/2 1/2 1/2 1/2 1/2)) (def-zone violin (make-zone (length-of violin))) (def-symbol violin '(a b b d c d d e)) (def-velocity violin '(60 30 50 20 20 10 10 20 6)) (def-channel violin k2000i-1) (def-program k2000p violin '(slow-solo-strings)) (def-controller k2000c (violin pan '((30)) volume '((127)))) (def-duration violin (duration-tuning (length-of violin))) (def-tuning violin '(0 -2048 0 2048 0 0 2048 0 0)) (compile-instrument-p "ccl;output:" "violin" violin)